1
2
3
4
5
6
7
8
9 package ca.uhn.cache.internal.hibernate;
10
11 import ca.uhn.cache.VolatilityEnum;
12
13
14 /***
15 * Persistent class that allows <b>Hibernate</b> to persist <code>VolatilityEnum</code> instances.
16 *
17 * @author <a href="mailto:alexei.guevara@uhn.on.ca">Alexei Guevara</a>
18 * @version $Revision: 1.1 $ updated on $Date: 2005/01/24 22:52:58 $ by $Author: bryan_tripp $
19 */
20 public class HibernateVolatilityEnum extends HibernateEnum {
21
22 /***
23 */
24 public HibernateVolatilityEnum() {
25 super( VolatilityEnum.class );
26 }
27
28 }